home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / 0294.ZIP / ABOUT.DAT < prev    next >
Text File  |  1985-05-09  |  7KB  |  515 lines

  1. :ci
  2.     char ci()
  3.  
  4. :co
  5.     void co(c)
  6.     char c;
  7.                     
  8. :csts
  9.     char csts()
  10.  
  11. :getchar
  12.     int getchar()        
  13.  
  14. :gets
  15.     char *gets(s)
  16.     char *s;
  17.             
  18. :putchar
  19.     putchar(c)
  20.     char c;
  21.  
  22. :puts
  23.     void puts(string)
  24.     char *string;
  25.  
  26. :close
  27.     int close(fd)
  28.     int fd;
  29.  
  30. :creat
  31.     int creat(filename)
  32.     char *filename;
  33.  
  34. :fclose
  35.     int fclose(fd)
  36.     int fd;
  37.  
  38. :fgetc
  39.     int fgetc(fd)
  40.     int fd;
  41.  
  42. :fgets
  43.     char *fgets(s, size, fd)
  44.     char *s;
  45.     int size, fd;
  46.  
  47. :fopen
  48.     int fopen(filename, type)
  49.     char *filename, *type;
  50.  
  51. :fputc
  52.     int fputc(c, fd)
  53.     char c;
  54.     int fd;
  55.  
  56. :fputs
  57.     int fputs(c, fd)
  58.     char c;
  59.     int fd;
  60.  
  61. :fread
  62.     int fread(buf, size, count, fd)
  63.     char *buf;
  64.     int size, count, fd;
  65.  
  66. :fseek
  67.     long fseek(fd, offset, mode)
  68.     int fd, mode;
  69.     long offset;
  70.  
  71. :fwrite
  72.     int fwrite(buf, size, count, fd)
  73.     char *buf;
  74.     int size, count, fd;
  75.  
  76. :getc
  77.     int getc(fd)
  78.     int fd;
  79.  
  80. :getw
  81.     int getw(fd)
  82.     int fd;
  83.  
  84. :lseek
  85.     long lseek(fd, offset, mode)
  86.     int fd, mode;
  87.     long offset;
  88.  
  89. :open
  90.     int open(filename, mode)
  91.     char *filename;
  92.     int mode;
  93.  
  94. :putc
  95.     int putc(c, fd)
  96.     char c;
  97.     int fd;
  98.  
  99. :putw
  100.     int putw(n, fd)
  101.     int n, fd;
  102.  
  103. :read
  104.     int read(fd, buf, size)
  105.     int fd, size;
  106.     char *buf;
  107.  
  108. :rename
  109.     int rename(oldf, newf)
  110.     char *oldf, *newf;
  111.  
  112. :rewind
  113.     long rewind(fd)
  114.     int fd;
  115.  
  116. :ungetc
  117.     void ungetc(c, fd)
  118.     char c;
  119.     int fd;
  120.  
  121. :unlink
  122.     int unlink(filename)
  123.     char *filename;
  124.  
  125. :write
  126.     int write(fd, buf, count)
  127.     int fd, count;
  128.     char *buf;
  129.  
  130. :scanf
  131.     void scanf(format, arg1, arg2, ...)
  132.     char *format;
  133.     union datatype *arg1, *arg2, ...;
  134.  
  135. :fscanf
  136.     int fscanf(fd, format, arg1, arg2, ...)
  137.     int fd;
  138.     char *format;
  139.     union datatype *arg1, *arg2, ...;
  140.  
  141. :sscanf
  142.     void sscanf(s, format, arg1, arg2, ...);
  143.     char *s, *format;
  144.     union datatype *arg1, *arg2, ...;
  145.  
  146. :printf
  147.     void printf(format [, arg1, arg2, ...])
  148.     char *format;
  149.  
  150. :fprintf
  151.     int fprintf(fd, format [, arg1, arg2, ...])
  152.     int fd;
  153.     char *format;
  154.  
  155. :sprintf
  156.     void sprintf(s, format [, arg1, arg2, ...])
  157.     char *s, *format;
  158.  
  159. :freeall
  160.     void freeall(size)
  161.     unsigned size;
  162.  
  163. :malloc
  164.     char *malloc(size)
  165.     unsigned size;
  166.  
  167. :free
  168.     int free(pseg)
  169.     char *pseg;
  170.  
  171. :realloc
  172.     char *realloc(pseg, size)
  173.     char *pseg;
  174.     unsigned size;
  175.  
  176. :calloc
  177.     char *calloc(count, sizeEach)
  178.     unsigned count, sizeEach;
  179.  
  180. :_memory
  181.     char *_memory()
  182.  
  183. :_showsp
  184.     char *_showsp()
  185.  
  186. :_setsp
  187.     void _setsp(offset)
  188.     unsigned offset;
  189.  
  190. :_showds
  191.     unsigned _showds()
  192.  
  193. :_showcs
  194.     unsigned _showcs()
  195.  
  196. :_inb
  197.     char _inb(port)
  198.     unsigned port;
  199.  
  200. :_inw
  201.     unsigned _inw(port)
  202.     unsigned port;
  203.  
  204. :_move
  205.     void _move(count, fromOff, toOff)
  206.     unsigned count;
  207.     char *fromOff, *toOff;
  208.  
  209. :_lmove
  210.     void _lmove(count, fromOff, fromSeg, toOff, toSeg)
  211.     unsigned count, fromSeg, toSeg;
  212.     char *fromOff, *toOff;
  213.  
  214. :_outb
  215.     void _outb(c, port)
  216.     char c;
  217.     unsigned port;
  218.  
  219. :_outw
  220.     void _outw(u, port)
  221.     unsigned u, port;
  222.  
  223. :_peek
  224.     char _peek(off, seg)
  225.     char *off;
  226.     unsigned seg;
  227.  
  228. :_poke
  229.     void _poke(c, off, seg)
  230.     char c, *off;
  231.     unsigned seg;
  232.  
  233. :_setmem
  234.     void _setmem(off, count, c)
  235.     char *off, c;
  236.     unsigned count;
  237.  
  238. :abs
  239.     unsigned abs(n)
  240.     int n;
  241.  
  242. :acos
  243.     double acos(x)
  244.     double x;
  245.  
  246. :asin
  247.     double asin(x)
  248.     double x;
  249.  
  250. :atan
  251.     double atan(x)
  252.     double x;
  253.  
  254. :ceil
  255.     double ceil(x)
  256.     double x;
  257.  
  258. :cos
  259.     double cos(x)
  260.     double x;
  261.  
  262. :exp
  263.     double exp(x)
  264.     double x;
  265.  
  266. :exp10
  267.     double exp10(x)
  268.     double x;
  269.  
  270. :fabs
  271.     double fabs(x)
  272.     double x;
  273.  
  274. :floor
  275.     double floor(x)
  276.     double x;
  277.  
  278. :log
  279.     double log(x)
  280.     double x;
  281.  
  282. :log10
  283.     double log10(x)
  284.     double x;
  285.  
  286. :pow
  287.     double pow(x)
  288.     double x;
  289.  
  290. :sin
  291.     double sin(x)
  292.     double x;
  293.  
  294. :sqrt
  295.     double sqrt(x)
  296.     double x;
  297.  
  298. :tan
  299.     double tan(x)
  300.     double x;
  301.  
  302. :chain
  303.     void chain(filename, commandTail)
  304.     char *filename, *commandTail;
  305.  
  306. :dates
  307.     void dates(buf)
  308.     char *buf;
  309.  
  310. :_doint
  311.     void _doint(interruptNum)
  312.     int interruptNum;
  313.  
  314. :exec
  315.     int exec(filename, commandTail)
  316.     char *filename, commandTail;
  317.  
  318. :exit
  319.     void exit(completionCode)
  320.     int completionCode;
  321.  
  322. :longjmp
  323.     void longjmp(0, id)
  324.     int id;
  325.  
  326. :moverlay
  327.     int moverlay(overlayNum)
  328.     int overlayNum;
  329.  
  330. :overlay
  331.     int overlay(overlayNum)
  332.     int overlayNum;
  333.  
  334. :overlay_init
  335.     int overlay_init(filename)
  336.     char *filename;
  337.  
  338. :_os
  339.     int _os(ah, dx)
  340.     int ah, dx;
  341.  
  342. :setjmp
  343.     int setjmp(0)
  344.  
  345. :times
  346.     void times(buf)
  347.     char *buf;
  348.  
  349. :isalnum
  350.     int isalnum(c)
  351.     char c;
  352.  
  353. :isalpha
  354.     int isalpha(c)
  355.     char c;
  356.  
  357. :isascii
  358.     int isascii(c)
  359.     char c;
  360.  
  361. :iscntrl
  362.     int iscntrl(c)
  363.     char c;
  364.  
  365. :isdigit
  366.     int isdigit(c)
  367.     char c;
  368.  
  369. :islower
  370.     int islower(c)
  371.     char c;
  372.  
  373. :isupper
  374.     int isupper(c)
  375.     char c;
  376.  
  377. :isprint
  378.     int isprint(c)
  379.     char c;
  380.  
  381. :ispunct
  382.     int ispunct(c)
  383.     char c;
  384.  
  385. :isspace
  386.     int isspace(c)
  387.     char c;
  388.  
  389. :tolower
  390.     char tolower(c)
  391.     char c;
  392.  
  393. :toupper
  394.     char toupper(c)
  395.     char c;
  396.  
  397. :atoi
  398.     int atoi(s)
  399.     char *s;
  400.  
  401. :atof
  402.     double atof(s)
  403.     char *s;
  404.  
  405. :atol
  406.     long atol(s)
  407.     char *s;
  408.  
  409. :index
  410.     char *index(s, c)
  411.     char *s, c;
  412.  
  413. :rindex
  414.     char *rindex(s, c)
  415.     char *s, c;
  416.  
  417. :strcat
  418.     char *strcat(toString, fromString)
  419.     char *toString, *fromString;
  420.  
  421. :strcmp
  422.     int strcmp(leftString, rightString)
  423.     char *leftString, *rightString;
  424.  
  425. :strcpy
  426.     char *strcpy(toString, fromString)
  427.     char *toString, *fromString;
  428.  
  429. :strlen
  430.     unsigned strlen(s)
  431.     char *s;
  432.  
  433. :strncat
  434.     char *strncat(toString, fromString, maxCount)
  435.     char *toString, *fromString;
  436.     int maxCount;
  437.  
  438. :strncmp
  439.     int *strncmp(leftString, rightString, maxCount)
  440.     char *leftString, *rightString;
  441.     int maxCount;
  442.  
  443. :strncpy
  444.     char *strncpy(toString, fromString, maxCount)
  445.     char *toString, *fromString;
  446.     int maxCount;
  447.  
  448. :srand
  449.     void srand(seed)
  450.     int seed;
  451.  
  452. :rand
  453.     unsigned rand()
  454.  
  455. :frand
  456.     double frand()
  457.  
  458. :qsort
  459.     void qsort(array, elementCount, elementSize, compareFunc)
  460.     char *array;
  461.     int elementCount, elementSize, (*compareFunc)();
  462.  
  463. :scr_setup
  464.     void scr_setup()
  465.  
  466. :scr_setmode
  467.     void scr_setmode(mode)
  468.     char mode;
  469.  
  470. :scr_rowcol
  471.     void scr_rowcol(row, col)
  472.     char row, col;
  473.  
  474. :scr_clr
  475.     void scr_clr()
  476.  
  477. :scr_clrl
  478.     void scr_clrl()
  479.  
  480. :scr_cls
  481.     void scr_cls
  482.  
  483. :scr_scup
  484.     void scr_scup()
  485.  
  486. :scr_scrup
  487.     void scr_scrup(numLines, fromRow, fromCol, toRow, toCol)
  488.     char numLines, fromRow, fromCol, toRow, toCol;
  489.  
  490. :scr_scdn
  491.     void scr_scdn()
  492.  
  493. :scr_scrdn
  494.     void scr_scrdn(numLines, fromRow, fromCol, toRow, toCol)
  495.     char numLines, fromRow, fromCol, toRow, toCol;
  496.  
  497. :scr_co
  498.     void scr_co(c)
  499.     char c;
  500.  
  501. :scr_ci
  502.     char scr_ci()
  503.  
  504. :scr_csts
  505.     char scr_csts()
  506.  
  507. :scr_sinp
  508.     char scr_sinp()
  509.  
  510. :scr_cursoff
  511.     void scr_cursoff()
  512.  
  513. :scr_curson
  514.     void scr_curson()